home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / viewkit / builderExamples / stopwatch / Stopwatch.h < prev    next >
Encoding:
C/C++ Source or Header  |  1994-08-02  |  1.2 KB  |  58 lines

  1. //////////////////////////////////////////////////////////////
  2. //
  3. // Header file for Stopwatch
  4. //
  5. //    This file is generated by BuildXcessory. DO NOT MODIFY. 
  6. //    USE SUBCLASSING INSTEAD
  7. //
  8. //    This class is a user interface "component", as described
  9. //    in "Object-Oriented Programming with C++ and OSF/Motif",
  10. //    by Douglas Young, Prentice Hall, 1992. ISBN 0-13-630252-1
  11. //
  12. //    If you directly modify this file, you may lose your 
  13. //    changes if it is  regenerated by the builder again.
  14. //
  15. //////////////////////////////////////////////////////////////
  16. #ifndef STOPWATCH_H
  17. #define STOPWATCH_H
  18. #include <Vk/VkComponent.h>
  19. #include "ControlDerived.h"
  20. #include "FaceDerived.h"
  21.  
  22.  
  23. // Externally defined classes referenced by this class ;
  24.  
  25. class ControlDerived;
  26. class FaceDerived;
  27. class StopwatchDerived;
  28.  
  29. class Stopwatch : public VkComponent
  30.  
  31.   public:
  32.  
  33.     Stopwatch(const char *, Widget);
  34.     ~Stopwatch();
  35.     const char *  className();
  36.  
  37.   protected: 
  38.  
  39.     // Classes created by this class
  40.  
  41.     FaceDerived *_face;
  42.     ControlDerived *_control;
  43.  
  44.     // Widgets created by this class
  45.  
  46.     Widget  _stopwatch;
  47.  
  48.  
  49.   private: 
  50.  
  51.     // Array of default resources
  52.  
  53.     static String      _defaultStopwatchResources[];
  54. };
  55. #endif
  56.  
  57.